Post

Replies

Boosts

Views

Activity

Reply to LLDB RPC Server Crashed (Xcode 12)
I don't think we're able to include our project. It is pretty big. We have noticed that the methods that crash include a std::function<> as a parameter. If we remove this parameter from the method, the debugger does not appear to crash anymore. We continue to work on a smaller repro case, but any additional info I can add, I will. It is limited to specific methods and not the application as a whole.
Nov ’20
Reply to LLDB RPC Server Crashed (Xcode 12)
If anything this is getting worse with subsequent releases of Xcode. I crash just stepping over code in C&#92;&#43;+ on my M1 Mac Mini now running Xcode 12.4 (12D4e) on Big Sur (11.2 20D6). I submitted my most recent set of crash logs with feedback #FB8983057. Would really love to be able to use the debugger for C++ projects again.
Feb ’21
Reply to XCode 15.0 Feature dropped?
Define _LIBCPP_ENABLE_EXPERIMENTAL and you should get it. See <__ranges/join_view.h> for the explanation: // Note: `join_view` is still marked experimental because there is an ABI-breaking change that affects `join_view` in // the pipeline (https://isocpp.org/files/papers/D2770R0.html). // TODO: make `join_view` non-experimental once D2770 is implemented. #if _LIBCPP_STD_VER >= 20 && defined(_LIBCPP_ENABLE_EXPERIMENTAL) Funnily enough, the URL in the header file appears to be incorrect, but P2770R0 https://isocpp.org/files/papers/P2770R0.html correct.
Jun ’24